summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2023-12-09 01:40:03 +0100
committerLiam <byteslice@airmail.cc>2023-12-09 02:31:18 +0100
commit1d731dd1ff89841966300ff9914d3c406a977f2d (patch)
treef9b002e45e54495aad7299efea4c28629493b023
parentMerge pull request #12274 from liamwhite/srgb-nonsense (diff)
downloadyuzu-1d731dd1ff89841966300ff9914d3c406a977f2d.tar
yuzu-1d731dd1ff89841966300ff9914d3c406a977f2d.tar.gz
yuzu-1d731dd1ff89841966300ff9914d3c406a977f2d.tar.bz2
yuzu-1d731dd1ff89841966300ff9914d3c406a977f2d.tar.lz
yuzu-1d731dd1ff89841966300ff9914d3c406a977f2d.tar.xz
yuzu-1d731dd1ff89841966300ff9914d3c406a977f2d.tar.zst
yuzu-1d731dd1ff89841966300ff9914d3c406a977f2d.zip
-rw-r--r--src/core/hle/kernel/physical_core.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/physical_core.cpp b/src/core/hle/kernel/physical_core.cpp
index 7fa8e2a85..0f45a3249 100644
--- a/src/core/hle/kernel/physical_core.cpp
+++ b/src/core/hle/kernel/physical_core.cpp
@@ -139,7 +139,7 @@ void PhysicalCore::RunThread(Kernel::KThread* thread) {
}
// Handle external interrupt sources.
- if (interrupt || !m_is_single_core) {
+ if (interrupt || m_is_single_core) {
return;
}
}